+Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
+
+ * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
+ of use_text_format to the end of the function. (#56447)
+
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
+Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
+
+ * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
+ of use_text_format to the end of the function. (#56447)
+
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
+Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
+
+ * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
+ of use_text_format to the end of the function. (#56447)
+
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
+Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
+
+ * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
+ of use_text_format to the end of the function. (#56447)
+
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
+Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
+
+ * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
+ of use_text_format to the end of the function. (#56447)
+
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
+Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
+
+ * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
+ of use_text_format to the end of the function. (#56447)
+
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
+Tue Aug 28 21:00:44 2001 Matthias Clasen <matthiasc@poet.de>
+
+ * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Move the setting
+ of use_text_format to the end of the function. (#56447)
+
Tue Aug 28 20:06:07 2001 Matthias Clasen <matthiasc@poet.de>
* demos/testpixbuf.c (update_timeout): Use gdk_pixbuf_loader_get_pixbuf
{
g_return_if_fail (GTK_IS_PROGRESS_BAR (pbar));
- /* We don't support formats in this interface */
- GTK_PROGRESS (pbar)->use_text_format = FALSE;
-
if (text && *text)
{
gtk_progress_set_show_text (GTK_PROGRESS (pbar), TRUE);
gtk_progress_set_format_string (GTK_PROGRESS (pbar), "");
}
+ /* We don't support formats in this interface */
+ GTK_PROGRESS (pbar)->use_text_format = FALSE;
+
g_object_notify (G_OBJECT (pbar), "text");
}